home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / Editors / emacs / Emacs-1.14b1 / lisp / think-c / tc-header.el < prev    next >
Encoding:
Text File  |  1994-01-05  |  2.0 KB  |  65 lines  |  [TEXT/EMAC]

  1. ;;;
  2. ;;; Constants helpful when sending and receiving Apple events with Think C.
  3. ;;;
  4.  
  5. (defconst kLibrary          "LIB ")
  6. (defconst kProjectType      "PRTP")
  7. (defconst kCheckSyntax      "SNTX")
  8. (defconst kPreprocess       "PRCS")
  9. (defconst kDisassemble      "DASM")
  10. (defconst kPrecompile       "PCMP")
  11. (defconst kCompile          "CMPL")
  12. (defconst kMake             "MAKE")
  13.  
  14. (defconst cProjectDocument  "PDOC")
  15. (defconst cProjectSegment   "PSEG")
  16. (defconst cSourceFile       "SFIL")
  17. (defconst cObjectCode       "OCOD")
  18. (defconst cOptionData       "OPTS")
  19.  
  20. (defconst pProjectType      "PRTP")
  21. (defconst pCodeInfo         "CDNF")
  22. (defconst pIncludeFiles     "INCL")
  23. (defconst pSegment          "SGMT")
  24. (defconst pDebug            "DBNF")
  25. (defconst pCompiled         "COMP")
  26. (defconst pModified         "MOD ")
  27. (defconst pDirID            "DIR ")
  28. (defconst pFSSpec           "FSS ")
  29. (defconst pMake             "MAKE")
  30. (defconst pPreload          "PRLD")
  31. (defconst pProtected        "PROT")
  32. (defconst pLocked           "LCKD")
  33. (defconst pPurgeable        "PURG")
  34. (defconst pSystemHeap       "SYS ")
  35.  
  36. (defconst typeProjTypeData  "PTDT")
  37. (defconst typeCodeInfoData  "NFDT")
  38. (defconst typeOptionData    "OPDT")
  39.  
  40. (defconst kAEThinkSuite     "KAHL")
  41. (defconst kAECheckLink      "LINK")
  42. (defconst kAERun            "RUN ")
  43. (defconst kAEPeek           "PEEK")
  44. (defconst kAEPoke           "POKE")
  45. (defconst kAEOpenProject    "OPRJ")
  46. (defconst kAECloseProject   "CPRJ")
  47. (defconst kAEInteract       "UI  ")
  48. (defconst kAENoInteract     "NOUI")
  49. (defconst kAEFSS2Pathname   "PATH")
  50.  
  51. (defconst keyCompact        "CPCT")
  52. (defconst keyConfirm        "CNFM")
  53. (defconst keyCompileError   "CERR")
  54. (defconst keyLinkError      "LERR")
  55. (defconst keySaveFlags      "SFLG")
  56. (defconst keyCompileFlags   "CFLG")
  57. (defconst keySelector       "SLCT")
  58. (defconst keyCompiled       "CMPD")
  59. (defconst keyUpdateOptions  "UPDT")
  60. (defconst keyConvertOptions "CNVT")
  61. (defconst keyUseDebugger    "DBUG")
  62. (defconst keyGo             "GO  ")
  63. (defconst keyLength         "LEN ")
  64. (defconst keyType           "TYPE")
  65.